home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Top 200 Programs
/
Top 200 Programs.iso
/
Bob8
/
THOMPSON
/
LIBERTY
/
PRODUCT
/
LB14W.EXE
/
RUNBATCH.BAS
< prev
next >
Wrap
BASIC Source File
|
1996-05-24
|
241b
|
12 lines
'how to run a DOS batch file from Liberty BASIC
open DefaultDir$+"\test.bat" for output as #1
print #1, "pause - this is a test"
print #1, "exit"
close #1
run "command.com /k "+DefaultDir$+"\test.bat"